| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /** global: GLSR, jQuery */ |
||
| 35 | post_: function( callback ) { // function|void |
||
| 36 | if( this.event ) { |
||
| 37 | this.postFromEvent_( callback ); |
||
| 38 | return; |
||
| 39 | } |
||
| 40 | $.post( GLSR.ajaxurl, this.buildData_(), function( response ) { |
||
| 41 | if( typeof callback !== 'function' )return; |
||
| 42 | callback( response ); |
||
| 43 | }); |
||
| 44 | }, |
||
| 45 | |||
| 61 |